home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-10 | 808 b | 34 lines | [TEXT/CWIE] |
- ///--------------------------------------------------------------------------------------
- // StringUtils.h
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __STRINGUTILS__
- #define __STRINGUTILS__
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void PStrCpy(Str255 srcStr, Str255 dstStr);
- void PStrCat(Str255 appendStr, Str255 dstStr);
-
- // These routines are written by Hiep Dam
- void PStrPad(Str255 destStr, short padToLen, register char padChar);
- void PStrPadCpy(Str255 srcStr, Str255 destStr, short padToLen, register char padChar);
- void PStrDelete(Str255 srcStr, short start, short length);
-
- Boolean PStrReplaceSuffix(Str255 searchSuffix, Str255 replaceSuffix, Str255 destStr);
-
- #ifdef __cplusplus
- }
- #endif
- #endif
-
-